home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / NAMEED32.ZIP / NAMEEDIT.TXT < prev    next >
Encoding:
Text File  |  1996-04-19  |  1.6 KB  |  46 lines

  1. {---------------------------------------------------------------------------------------
  2.  
  3.     The purpose of this component is to allow applications to easily
  4.     incorporate a name field that will parse First, Middle, Last, Greeting, and Suffix
  5.     easily without having to write any code.
  6.  
  7.     This component is used just like any edit component, with the addition of
  8.     mapping output to other edit controls.
  9.  
  10.     To parse the names from the field, the control must first have a reference to
  11.     five other standard TEdit controls.  These must be referenced according to the
  12.     type of data you wish for them to contain.  The fields to reference are as follows:
  13.  
  14.     GreetingParsedField
  15.  
  16.     FirstNameParsedField
  17.  
  18.     MiddleNameParsedField
  19.  
  20.     LastNameParsedField
  21.  
  22.     SuffixParsedField
  23.  
  24.     If the GreetingParser or SuffixParser does not work on every case, you may add cases
  25.     to the StringList directly after inserting the component, or you may dynamically
  26.     load the data from a flat text file (Formatted like a TStringList) at runtime
  27.     for extra functionality.
  28.  
  29.  
  30. This component is being marketed as shareware with the "try before you buy" concept.
  31. All registered owners are entitles to full VCL source code, and maintenance releases
  32. as they occur.  Registration is $25 US.
  33.  
  34. Please send to:
  35.  
  36. Jim Wood
  37. 3652 S Newcombe Way
  38. Lakewood, CO 80235
  39.  
  40. Comments & Questions to: jwood@cfer.com
  41.  
  42. Thank you!
  43. ---------------------------------------------------------------------------------------}
  44.                               {Copyright ⌐ 1996 by Jim Wood}
  45.  
  46.